Skip to main content

Get API Keys and Endpoint

The API keys and broker endpoints received via this API help you connect to the ODIN REST APIs.

🌐🗝️ Get API Keys

FieldValue
NameVAS – Portal redirect
URLhttp://<domain>/loginservice/apiKeys
DescriptionReturns API Keys and Endpoints for REST API Integration
MethodPOST

🔗 Request

ParameterData TypeMandatory/OptionalDescription
sApplicationTokenStringMThird party Application Token
sPartnerAppIdStringMBroker's partner ID Refer Broker List
sTwoWayTokenStringMToken generated by Third party for two-way authentication

Example Request

{
"sApplicationToken": "<Application Token>",
"sPartnerAppId": "<Broker Partner ID>",
"sTwoWayToken": "<abcdefg>"
}

Example Response

{
"success": true,
"statusCode": "reg-200-059",
"data": [
{
"type": "interactive",
"apikey": "XXXXXXXXX",
"endpoint": "<End point>",
"secretkey": null
},
{
"type": "broadcast",
"apikey": "XXXXXXXXX",
"endpoint": "<endpoint>",
"secretkey": null
},
{
"type": "omex",
"apikey": "XXXXXXXXXX",
"endpoint": "<endpoint>",
"secretkey": "XXXXXXXo"
}
],
"message": "Api Keys Generated Successfully.",
"traceId": "b0efa643-4edc-4fc2-b544-ae280c8d7793"
}